home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / Syn Text Editor 2.1.0.46 / synsetup-2.1.0.46.exe / {app} / java.dci < prev    next >
INI File  |  2002-07-19  |  1KB  |  108 lines

  1. [switchs | switch statement]
  2. switch (|)
  3. {
  4.   case : ;
  5.   break;
  6.   case : ;
  7.   break;
  8. }
  9.  
  10. [switche | switch statement (with default)]
  11. switch (|)
  12. {
  13.   case : ;
  14.   break;
  15.   case : ;
  16.   break;
  17.   default: ;
  18. }
  19.  
  20. [classd | class declaration (no parts)]
  21. public class |
  22. {
  23. };
  24.  
  25. [fors | for (no opening/closing braces)]
  26. for (|; ;)
  27.  
  28. [forb | for statement]
  29. for (|; ;)
  30. {
  31.  
  32. }
  33.  
  34. [for | for statement]
  35. for (int i = 0; i <|; i++)
  36. {
  37. }
  38.  
  39. [function | function declaration]
  40. |()
  41. {
  42.  
  43. }
  44.  
  45. [ifs | if (no opening/closing braces)]
  46. if (|)
  47.  
  48. [ifb | if statement]
  49. if (|)
  50. {
  51.  
  52. }
  53.  
  54. [ife | if (no opening/closing braces) else (no opening/closing braces)]
  55. if (|)
  56.  
  57. else
  58.  
  59. [ifeb | if else]
  60. if (|)
  61. {
  62.  
  63. }
  64. else
  65. {
  66.  
  67. }
  68.  
  69. [trye | try catch]
  70. try
  71. {
  72.   |
  73. }
  74. catch()
  75. {
  76. }
  77.  
  78. [trycf | try catch finally]
  79. try
  80. {
  81.   |
  82. }
  83. catch()
  84. {
  85. }
  86. finally
  87. {
  88. }
  89.  
  90. [whileb | while statement]
  91. while (|)
  92. {
  93.  
  94. }
  95.  
  96. [whiles | while (no opening/closing braces)]
  97. while (|)
  98.  
  99. [out | System.out.println]
  100. System.out.println
  101.  
  102. [streamin | input from keyboard]
  103. BufferedReader streami = new BufferedReader(
  104.   new InputStreamReader(System.in));
  105. |
  106.  
  107. [fostream | file output stream]
  108. PrintWriter fostream = new PrintWriter(new FileWriter(|))